home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / tclX-6.4 / help / intro / procedures < prev    next >
Encoding:
Text File  |  1992-12-17  |  554 b   |  10 lines

  1.      PROCEDURES
  2.           Tcl allows you to extend the command interface  by  defining
  3.           procedures.   A  Tcl  procedure can be invoked just like any
  4.           other Tcl command (it has a name and it receives one or more
  5.           arguments).   The  only  difference is that its body isn't a
  6.           piece of C code linked into the  program;  it  is  a  string
  7.           containing  one  or  more  other Tcl commands.  See the proc
  8.           command for information on how to define procedures and what
  9.           happens when they are invoked.
  10.